home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Network Info tools / ViewHEAD.EXE / ViewHEAD.txt < prev   
Encoding:
Text File  |  2000-12-22  |  2.7 KB  |  81 lines

  1. ViewHEAD 1.0.3: Freeware HTTP utility for Win32
  2. Copyright (C) 1999, 2000 Jem E. Berkes
  3.  
  4. E-mail:    jberkes@pc-tools.net
  5. Web:    http://www.pc-tools.net/
  6.  
  7. Comments, suggestions, bug reports welcome.
  8.  
  9. This program is freeware, but is not in the public domain.
  10. Reverse engineering and/or code modification is strictly prohibited.
  11. This software must be distributed in its entirety.
  12.  
  13. ----------------------------------------------------------------------
  14. PURPOSE
  15.  
  16. Whenever a web browser sends an HTTP request to a web server, it is
  17. in turn sent a set of HTTP headers that contain valuable information
  18. about the web server and the document which is about to be sent. These
  19. headers are, for the most part, hidden because most newer browsers
  20. don't give the user any way to see them.
  21.  
  22. ViewHEAD allows you to view these HTTP headers. It sends out a HEAD
  23. request (which, by RFC 2068, "MUST be supported by all general-purpose
  24. servers"), and shows the user the response from the web server.
  25.  
  26. Note: If you are behind some kind of a firewall or proxy server, you
  27. may not be able to use ViewHEAD.
  28.  
  29. ----------------------------------------------------------------------
  30. MORE ABOUT HTTP HEADERS
  31.  
  32. The HTTP headers included in a server response often contain:
  33. - The type of software that the web server is running
  34. - The remote time and date
  35. - The time and date when the file was last modified
  36. - The MIME type of the returned file
  37. - The size of the returned file
  38. - Cookie settings
  39.  
  40. For example, here are the headers from http://www.apache.org/
  41.  
  42. HTTP/1.1 200 OK
  43. Date: Fri, 22 Dec 2000 23:20:57 GMT
  44. Server: Apache/1.3.15-dev (Unix) tomcat/1.0
  45. Cache-Control: max-age=86400
  46. Expires: Sat, 23 Dec 2000 23:20:57 GMT
  47. Connection: close
  48. Content-Type: text/html
  49.  
  50. ----------------------------------------------------------------------
  51. USING THE PROGRAM
  52.  
  53. ViewHEAD uses a very straightforward GUI interface. Enter the complete
  54. URL, then click the View button. The headers will then be retrieved and
  55. displayed.
  56.  
  57. The URL has to be a complete hypertext transfer protocol URL. This has
  58. the format:
  59. http://host[:port]/pathname
  60.  
  61. So for example, the following are all valid requests:
  62. http://www.server.com/directory/file
  63. http://www.server.com:80/directory/file
  64. http://www.server.com
  65. ----------------------------------------------------------------------
  66. REVISION HISTORY
  67.  
  68. Version 1.0.3:
  69. - User now enters a URL (http://etc)
  70.  
  71. Version 1.0.2:
  72. - Added minimize button
  73. - Built using Microsoft's updated runtime libraries
  74.  
  75. Version 1.0.1:
  76. - Added firewall/proxy warning to text file
  77. - Improved application's help screen
  78. - Improved main documentation
  79. - Changed HTTP/1.0 request to HTTP/1.1
  80. - Added version resource to ViewHEAD.exe
  81.